home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 24 / CU Amiga Magazine's Super CD-ROM 24 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-07].iso / CUCD / Programming / Asap / ASAP / BitScaleArgs_.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-09-08  |  1.1 KB  |  32 lines

  1. /*****************************************************************************
  2.  *                                                                           *
  3.  * ASAP - Amiga Software Authoring Platform                                  *
  4.  *                                                                           *
  5.  * Written by Laurie Perrin                                                  *
  6.  *                                                                           *
  7.  * ABitScaleArgs wrapper class                                               *
  8.  *                                                                           *
  9.  *****************************************************************************/
  10.  
  11. #ifndef ASAP_BitScaleArgs_H
  12. #define ASAP_BitScaleArgs_H
  13.  
  14. extern "C"
  15. {
  16.  #include <Graphics/Scale.h>
  17.  #include <Proto/Graphics.h>
  18. }
  19.  
  20. class ABitScaleArgs : public BitScaleArgs
  21. {
  22.  public:
  23.  inline void BitMapScale();
  24. };
  25. //----------------------------------------------------------------------------
  26. void ABitScaleArgs::BitMapScale ()
  27. {
  28.  ::BitMapScale(this);
  29. }
  30.  
  31. #endif
  32.